home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / util / libs / Identify.lha / Identify / include / Pascal / libraries / identify.h
Text File  |  1997-09-01  |  10KB  |  233 lines

  1. ** $VER: identify.h 7.3 (31.8.97)
  2. ** 
  3. ** identify.library definitions 
  4. ** 
  5. ** (C) Copyright 1996-97 Richard Koerber
  6. ** All Rights Reserved. 
  7. }
  8.  
  9. {$if not def LIBRARIES_IDENTIFY_H} CONST LIBRARIES_IDENTIFY_H=1;
  10.  
  11.  
  12. {$if not def EXEC_LIBRARIES_H;incl 'exec/libraries.h';endif}
  13. {$if not def UTILITY_TAGITEM_H;incl 'utility/tagitem.h';endif}
  14.  
  15. CONST  _IDTAGS      = $CD450000;
  16.  
  17. { --------------------------------------------------------------------------}
  18. { Generic library informations }
  19.  
  20. CONST  IDENTIFYVERSION = 7;
  21.  
  22. TYPE   p_IdentifyBase = ^_IdentifyBase;
  23.        _IdentifyBase  = Record
  24.                           ifyb_LibNode  :_Library;
  25.                         End;
  26.  
  27. CONST  IDENTIFYBUFLEN = 50;  { default buffer length }
  28.  
  29. { --------------------------------------------------------------------------}
  30. { Expansion() tags }
  31.  
  32.        IDTAG_ConfigDev   = _IDTAGS+$00; { "p_ConfigDev" ConfigDev }
  33.                                         { structure to be evaluated }
  34.        IDTAG_ManufID     = _IDTAGS+$01; { UWORD manufacturer ID if no }
  35.                                         { ConfigDev is available }
  36.        IDTAG_ProdID      = _IDTAGS+$02; { UBYTE product ID if no }
  37.                                         { ConfigDev is available }
  38.        IDTAG_StrLength   = _IDTAGS+$03; { UWORD of maximum buffer length, }
  39.                                         { including termination. Default }
  40.                                         { is 50. }
  41.        IDTAG_ManufStr    = _IDTAGS+$04; { STRPTR of manufacturer name }
  42.                                         { puffer, or NULL }
  43.        IDTAG_ProdStr     = _IDTAGS+$05; { STRPTR of product name }
  44.                                         { puffer, or NULL }
  45.        IDTAG_ClassStr    = _IDTAGS+$06; { STRPTR of product class }
  46.                                         { puffer, or NULL }
  47.        IDTAG_DeadStr     = _IDTAGS+$07; { STRPTR deadend or recoverable alert? }
  48.        IDTAG_SubsysStr   = _IDTAGS+$08; { STRPTR alert subsystem }
  49.        IDTAG_GeneralStr  = _IDTAGS+$09; { STRPTR alert general cause }
  50.        IDTAG_SpecStr     = _IDTAGS+$0A; { STRPTR alert specific cause }
  51.        IDTAG_FuncNameStr = _IDTAGS+$0B; { STRPTR function name }
  52.        IDTAG_Expansion   = _IDTAGS+$0C; { "pp_ConfigDev" ConfigDev for a }
  53.                                         { complete expansion check. Init }
  54.                                         { the variable with NULL and pass }
  55.                                         { a pointer to it using this tag. }
  56.        IDTAG_Secondary   = _IDTAGS+$0D; { BOOL warn for secondary expansion }
  57.                                         { boards (defaults to FALSE) }
  58.  
  59. { --------------------------------------------------------------------------}
  60. { Hardware description types }
  61.  
  62.        IDHW_SYSTEM      = 0;   { System (Amiga,DraCo,...)            [V2] }
  63.        IDHW_CPU         = 1;   { CPU (68000,68010,...,68060) }
  64.        IDHW_FPU         = 2;   { FPU (---,68881,68882,68040,68060) }
  65.        IDHW_MMU         = 3;   { MMU (---,68852,68030,68040,68060) }
  66.        IDHW_OSVER       = 4;   { OS Version (Vx.x) }
  67.        IDHW_EXECVER     = 5;   { Exec Version (Vx.x) }
  68.        IDHW_WBVER       = 6;   { Workbench Version (---,Vx.x) }
  69.        IDHW_ROMSIZE     = 7;   { OS ROM Size (xKB, xMB) }
  70.        IDHW_CHIPSET     = 8;   { Chipset (OCS,ECS,AGA,DraCo) }
  71.        IDHW_GFXSYS      = 9;   { Graphic OS (AmigaOS, CyberGraphX, ...) }
  72.        IDHW_CHIPRAM     = 10;  { Chip RAM (xKB, xMB, xGB) }
  73.        IDHW_FASTRAM     = 11;  { Fast RAM (xKB, xMB, xGB) }
  74.        IDHW_RAM         = 12;  { Total RAM (xKB, xMB, xGB) }
  75.        IDHW_SETPATCHVER = 13;  { SetPatch Version (---,Vx.x)         [V4] }
  76.        IDHW_AUDIOSYS    = 14;  { Audio OS (AmigaOS, AHI, ...)        [V5] }
  77.        IDHW_OSNR        = 15;  { AmigaOS (2.04, 3.1, ...) }
  78.        IDHW_VMMCHIPRAM  = 16;  { VMM Chip RAM (*KB, *MB, *GB) }
  79.        IDHW_VMMFASTRAM  = 17;  { VMM Fast RAM (*KB, *MB, *GB) }
  80.        IDHW_VMMRAM      = 18;  { VMM Total RAM (*KB, *MB, *GB) }
  81.        IDHW_PLNCHIPRAM  = 19;  { Plain Chip RAM (*KB, *MB, *GB) }
  82.        IDHW_PLNFASTRAM  = 20;  { Plain Fast RAM (*KB, *MB, *GB) }
  83.        IDHW_PLNRAM      = 21;  { Plain Total RAM (*KB, *MB, *GB) }
  84.        IDHW_VBR         = 22;  { Vector Base Register                [V6] }
  85.        IDHW_LASTALERT   = 23;  { Last Alert code }
  86.        IDHW_VBLANKFREQ  = 24;  { VBlank Frequency }
  87.        IDHW_POWERFREQ   = 25;  { Power Frequency }
  88.        IDHW_ECLOCK      = 26;  { EClock }
  89.        IDHW_SLOWRAM     = 27;  { Plain Slow RAM (*KB, *MB, *GB) }
  90.        IDHW_GARY        = 28;  { Gary (---,Normal,...) }
  91.        IDHW_RAMSEY      = 29;  { RAMSEY (---,D,F)
  92.        IDHW_BATTCLOCK   = 30;  { Battery Backed Up Clock (---,Found) }
  93.        IDHW_CHUNKYPLANAR = 31; { Chunky To Planar Hardware (---,Found) [V7] }
  94.        IDHW_POWERPC     = 32;  { PowerPC present? (---,Found) }
  95.        IDHW_PPCCLOCK    = 33;  { PowerPC clock (unit MHz) }
  96.        IDHW_NUMBEROF    = 34;  { Number of types, PRIVATE! }
  97.  
  98. { --------------------------------------------------------------------------}
  99. { IDHW_SYSTEM numerical result codes }
  100.  
  101.        IDSYS_AMIGA1000 = 0;     { Amiga 1000 }
  102.        IDSYS_AMIGAOCS  = 1;     { OCS Amiga 500/2000 }
  103.        IDSYS_AMIGAECS  = 2;     { ECS Amiga 500/2000 }
  104.        IDSYS_AMIGA500  = 3;     { Amiga 500 }
  105.        IDSYS_AMIGA2000 = 4;     { Amiga 2000 }
  106.        IDSYS_AMIGA3000 = 5;     { Amiga 3000 }
  107.        IDSYS_CDTV      = 6;     { CDTV }
  108.        IDSYS_AMIGA600  = 7;     { Amiga 600 }
  109.        IDSYS_CD32      = 8;     { CD32 }
  110.        IDSYS_AMIGA1200 = 9;     { Amiga 1200 }
  111.        IDSYS_AMIGA4000 = 10;    { Amiga 4000 }
  112.        IDSYS_DRACO     = 11;    { DraCo }
  113.  
  114. { --------------------------------------------------------------------------}
  115. { IDHW_CPU numerical result codes }
  116.  
  117.        IDCPU_68000     = 0;     { 68000 }
  118.        IDCPU_68010     = 1;     { 68010 }
  119.        IDCPU_68020     = 2;     { 68020 }
  120.        IDCPU_68030     = 3;     { 68030 }
  121.        IDCPU_68EC030   = 4;     { 68EC030 (without MMU) }
  122.        IDCPU_68040     = 5;     { 68040 }
  123.        IDCPU_68LC040   = 6;     { 68LC040 (without FPU) }
  124.        IDCPU_68060     = 7;     { 68060 }
  125.        IDCPU_68LC060   = 8;     { 68LC060 (without FPU) }
  126.  
  127. { --------------------------------------------------------------------------}
  128. { IDHW_FPU numerical result codes }
  129.  
  130.        IDFPU_NONE      = 0;     { no FPU }
  131.        IDFPU_68881     = 1;     { 68881 }
  132.        IDFPU_68882     = 2;     { 68882 }
  133.        IDFPU_68040     = 3;     { 68040 }
  134.        IDFPU_68060     = 4;     { 68060 }
  135.  
  136. { --------------------------------------------------------------------------}
  137. { IDHW_MMU numerical result codes }
  138.  
  139.        IDMMU_NONE      = 0;     { no MMU }
  140.        IDMMU_68851     = 1;     { 68851 }
  141.        IDMMU_68030     = 2;     { 68030 }
  142.        IDMMU_68040     = 3;     { 68040 }
  143.        IDMMU_68060     = 4;     { 68060 }
  144.  
  145. { --------------------------------------------------------------------------}
  146. { IDHW_OSNR numerical result codes }
  147.  
  148.        IDOS_UNKNOWN    = 0;     { <V36 or >V41 }
  149.        IDOS_2_0        = 1;     { OS2.0  (V36) }
  150.        IDOS_2_04       = 2;     { OS2.04 (V37) }
  151.        IDOS_2_1        = 3;     { OS2.1  (V38) }
  152.        IDOS_3_0        = 4;     { OS3.0  (V39) }
  153.        IDOS_3_1        = 5;     { OS3.1  (V40) }
  154.        IDOS_3_2        = 6;     { OS3.2  (V41) }
  155.  
  156. { --------------------------------------------------------------------------}
  157. { IDHW_CHIPSET numerical result codes }
  158.  
  159.        IDCS_OCS        = 0;     { OCS }
  160.        IDCS_ECS        = 1;     { ECS }
  161.        IDCS_AGA        = 2;     { AGA }
  162.        IDCS_ALTAIS     = 3;     { DraCo Altais }
  163.  
  164. { --------------------------------------------------------------------------}
  165. { IDHW_GFXSYS numerical result codes }
  166.  
  167.        IDGOS_AMIGAOS   = 0;     { Plain AmigaOS }
  168.        IDGOS_EGS       = 1;     { EGS }
  169.        IDGOS_RETINA    = 2;     { Retina }
  170.        IDGOS_GRAFFITI  = 3;     { Graffiti }
  171.        IDGOS_TIGA      = 4;     { TIGA }
  172.        IDGOS_PROBENCH  = 5;     { Merlin ProBench }
  173.        IDGOS_PICASSO   = 6;     { Picasso }
  174.        IDGOS_CGX       = 7;     { CyberGraphX }
  175.        IDGOS_CGX3      = 8;     { CyberGraphX 3D }
  176.        IDGOS_PICASSO96 = 9;     { Picasso96 }
  177.  
  178. { --------------------------------------------------------------------------}
  179. { IDHW_AUDIOSYS numerical result codes }
  180.  
  181.        IDAOS_AMIGAOS   = 0;     { Plain AmigaOS }
  182.        IDAOS_MAESTIX   = 1;     { MaestroPro driver }
  183.        IDAOS_TOCCATA   = 2;     { Toccata driver }
  184.        IDAOS_PRELUDE   = 3;     { Prelude driver }
  185.        IDAOS_AHI       = 4;     { AHI }
  186.        IDAOS_MACROAUDIO = 5;    { MacroAudio }
  187.  
  188. { --------------------------------------------------------------------------}
  189. { IDHW_GARY numerical result codes }
  190.  
  191.        IDGRY_NONE      = 0;     { No Gary available }
  192.        IDGRY_NORMAL    = 1;     { Normal Gary }
  193.        IDGRY_ENHANCED  = 2;     { Enhanced Gary }
  194.  
  195. { --------------------------------------------------------------------------}
  196. { IDHW_RAMSEY numerical result codes }
  197.  
  198.        IDRSY_NONE      = 0;     { No RamSey available }
  199.        IDRSY_REVD      = 1;     { RamSey Revision D }
  200.        IDRSY_REVF      = 2;     { RamSey Revision F }
  201.  
  202. { --------------------------------------------------------------------------}
  203. { IDHW_POWERPC numerical result codes }
  204.  
  205.        IDPPC_NONE      = 0;     {  No PowerPC implemented }
  206.        IDPPC_OTHER     = 1;     {  Another PowerPC }
  207.        IDPPC_602       = 2;     {  602 }
  208.        IDPPC_603       = 3;     {  603 }
  209.        IDPPC_603E      = 4;     {  603e }
  210.        IDPPC_603P      = 5;     {  603p }
  211.        IDPPC_604       = 6;     {  604 }
  212.  
  213. { --------------------------------------------------------------------------}
  214. { Error codes }
  215.  
  216. { Positive error codes are DOS errors! }
  217.        IDERR_OKAY = 0;       { No error }
  218.        IDERR_NOLENGTH = -1;  { Buffer length is 0 ?? }
  219.        IDERR_BADID = -2;     { Missing or bad board ID }
  220.        IDERR_NOMEM = -3;     { Not enough memory }
  221.        IDERR_NOFD = -4;      { No fitting FD file found }
  222.        IDERR_OFFSET = -5;    { Function offset not found }
  223.        IDERR_DONE = -6;      { Done with traversing (not an error) }
  224.        IDERR_SECONDARY = -7; { Secondary expansion board (not an error) }
  225.  
  226. { --------------------------------------------------------------------------}
  227. { That's all... }
  228.  
  229. {$endif} 
  230.  
  231.  
  232.